home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / bash_completion.d / debconf < prev    next >
Text File  |  2009-10-02  |  293b  |  13 lines

  1. have debconf-show &&
  2. _debconf_show()
  3. {
  4.         local cur
  5.  
  6.         COMPREPLY=()
  7.         cur=${COMP_WORDS[COMP_CWORD]}
  8.         COMPREPLY=($( compgen -W '--listowners --listdbs --db=' -- $cur ) \
  9.                         $( apt-cache pkgnames -- $cur ) )
  10. }
  11. complete -F _debconf_show debconf-show
  12.  
  13.